using System;
using Northwind;

public partial class _Default : System.Web.UI.Page
{
    protected void Page_Load(object sender, EventArgs e)
    {
        NORTHWNDEntities svc = new NORTHWNDEntities(new
          Uri("http://localhost:4113/NorthwindDataService.svc").ToString());

        GridView1.DataSource = svc.Customers;
        GridView1.DataBind();
    }
}
